home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 400 b | 19 lines | [TEXT/MPS ] |
- # CopyIfNotEqual
- #
- # Copyright © 1994-96 by Apple Computer, Inc. All rights reserved.
- #
- # Copy {1} to {2} if they don't have the same sizes and the same
- # creator and mod dates.
-
- set exit 0
-
- if "`files -q -n -x brdm "{1}" ≥dev:null`" !~ /"{1}" +(≈)®1/
- set ®1 "111"
- end
- if "`files -q -n -x brdm "{2}" ≥dev:null`" !~ /"{2}" +(≈)®2/
- set ®2 "222"
- end
- if "{®1}" != "{®2}"
- duplicate -y "{1}" "{2}"
- end
-